home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 1.iso / toolbox / src / exampleCode / opengl / 2Dwrap / Makefile < prev    next >
Makefile  |  1996-11-11  |  167b  |  11 lines

  1. SHELL=/bin/sh
  2. SUBDIRS= *
  3.  
  4. all .DEFAULT: 
  5.     for d in ${SUBDIRS}; do \
  6.     if [ -d $$d ]; then \
  7.         echo "=====\tcd $$d; ${MAKE} $@"; \
  8.         (cd $$d; ${MAKE} $@); \
  9.     fi \
  10.     done
  11.